
/* Effect 20: 3D side */



nav a {
	position: relative;
	display: inline-block;
	width:205px;
	outline: none;
	color: #fff;
	
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 200;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	
}

nav a:hover,
nav a:focus {
	outline: none;
}

/* Effect 10: reveal, push out */
.cl-effect-10  {
	position: relative;
	z-index: 1;width:205px;
}

.cl-effect-10 a {
	overflow: hidden;
	padding:0 0 0 0;
	margin:0 0 0 0;
	
	width:205px;
	height:63px;
}

.cl-effect-10 a span {
	display: block;
	
	/*background:url(../product-img/button-1.png) no-repeat;*/
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	height:63px;width:205px;
	
}

.cl-effect-10 a::before {
	position: absolute;
	top: 0;
	left: 0px;
	z-index: -1;
	padding:17px 15px 17px 30px;
	width: 205px;
	height: 63px;
	/*background: #57ac06;*/
	background:#000;
	
	color: #fff;
	content: attr(data-hover);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: translateX(-25%);
	/*font-size:16px;*/
}

.cl-effect-10 a:hover span,
.cl-effect-10 a:focus span {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);color: #fff;
	
}

.cl-effect-10 a:hover::before,
.cl-effect-10 a:focus::before {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);color:#000066;
	font-weight:bold;color: #fff;
	
}


